home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / comm / misc / AuxSupport_V2.lha / auxshell-start < prev    next >
Text File  |  1992-03-27  |  583b  |  29 lines

  1. ;
  2. ; Start Csh going on AUX: Port when logged in via getty
  3. ;
  4. if exists ENV:KICKSTART
  5.  
  6. SetEnv AUXWait $process
  7.  
  8. Newcli from rem:aux.newcli aux:
  9. ; aux.newcli executes csh -tn s:.login and rem:aux.login
  10. ;
  11.  
  12. ; If we exit now, control will go back to getty allowing it and other
  13. ; uucp programs to muck up the serial port. So wait till newcli'd
  14. ; process above to exit.
  15. ;
  16. Wait 1440 min       ; wait indefinately until exiting aux process kills us
  17. UnSetENV AUXWait
  18.  
  19. else
  20. ;
  21. ; wb 1.3 stuff
  22. ;
  23.     Status >ENV:AUXWait com Status
  24.     Newcli from rem:aux.newcli aux:
  25.     Wait 1440 min
  26. endif
  27.